Retrieve all performance metrics dashboards.
GEThttps://ServerIP:PortNumber/api/v1/visualization/dashboards
This endpoint retrieves all available dashboards containing performance metrics details. The data returned includes information such as dashboard IDs, names, category, and their configurations.
Request
Responses
- 200
- 400
- 403
- 500
Successfully retrieved the list of dashboards containing performance metrics details.
- application/json
- Schema
- Example (from schema)
Schema
- Dashboard_GetAll_Response
- Dashboard_GetAll_Response
oneOf
response-code integer
status string
result object[]
response-code integer
status string
result object[]
{}
The request was invalid. Possible reasons could include missing required parameters or incorrect parameter values.
- application/json
- Schema
- Example (from schema)
Schema
response-code integer
status string
message string
error.code string
{
"response-code": 400,
"status": "fail",
"message": "Bad request",
"error.code": "MD031"
}
The client is not authorized to access this resource. Ensure that the correct permissions are granted.
- application/json
- Schema
- Example (from schema)
Schema
response-code integer
message string
error.code string
{
"response-code": 403,
"message": "Unauthorized access: Client is not allowed to access API",
"error.code": "MD022"
}
An unexpected error occurred on the server. This might be due to a temporary issue or a problem with the request processing.
- application/json
- Schema
- Example (from schema)
Schema
result object[]
{
"result": [
{
"response-code": 500,
"status": "fail",
"message": "Internal server exception, Possible reason: Cannot invoke \"String.length()\" because \"content\" is null",
"error.code": "MD031",
"error": "io.vertx.core.json.jackson.DatabindCodec.createParser(DatabindCodec.java:116)\n\tat io.vertx.core.json.jackson.DatabindCodec.fromString(DatabindCodec.java:90)\n\tat io.vertx.core.json.Json.decodeValue(Json.java:83)\n\tat io.vertx.core.json.Json.decodeValue(Json.java:95)\n\tat"
}
]
}
Authorization: cookie
name: cookietype: apiKeyin: cookie
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://ServerIP:PortNumber/api/v1/visualization/dashboards' \
-H 'Accept: application/json'
ResponseClear